|
<HTML> <HEAD> <TITLE></TITLE> </HEAD> <BODY> <TABLE> <TR> <TD></TD> </TR> </TABLE> </BODY> </HTML>
|
![]() Type or "copy" and "paste" the code on the left into your HTML Editor. (You can use Notepad for this if you don't have an HTML Editor.) In between <TD> and </TD> type "Hello World". When you "Save As" your web page, remember to change the "Save as Type" to "All Files (*.*)" and then give your web page a name with the .html or .htm extension. Your page will not display in a browser if you don't give the page an .html or .htm extension. Open up your browser and in the "address" or "location" window, type the "path" to your page. Eg; C:\internet\your_start_page.html Congratulations! You've just made your first table. Pretty easy huh? I know, it doesn't look like much, but we'll soon change that! The <TABLE> and </TABLE> simply tells the browser that everything between these tags is a table The <TR> is simply Table Row The <TD> is simply Table Data
|